home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of Casting
/
Best of Casting.iso
/
VIEWER
/
DOS
/
QPEG
/
DRVSRC
/
DRVSRC.ZIP
/
ET4000.ASM
< prev
next >
Wrap
Assembly Source File
|
1994-12-08
|
554b
|
34 lines
;
; QPEG386 video driver
; for Tseng Labs ET4000 chipsets
;
.286
Code Segment Para 'Code'
Assume cs:Code
Org 100h
Procs dw Bank,Init,Exit,0
Bank: mov dl,al
shl al,4
or al,dl
mov dx,03cdh
out dx,al
retf
Init: mov dx,03bfh
mov al,03h
out dx,al
mov dl,0d8h
mov al,0a0h
out dx,al
retf
Exit: retf
Code Ends
End Procs
; End of source.